home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 5 / CU Amiga Magazine's Super CD-ROM 05 (1996)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1996-12].iso / cucd / programming / perl / lib / perl5 / auto / text / parsewords / shellwords.al < prev   
Encoding:
Text File  |  1996-09-10  |  222 b   |  13 lines

  1. # NOTE: Derived from lib/Text/ParseWords.pm.  Changes made here will be lost.
  2. package Text::ParseWords;
  3.  
  4. sub shellwords {
  5.     local(@lines) = @_;
  6.     $lines[$#lines] =~ s/\s+$//;
  7.     "ewords('\s+', 0, @lines);
  8. }
  9.  
  10.  
  11.  
  12. 1;
  13.